home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-12-04 | 511 b | 20 lines | [TEXT/KAHL] |
- poly = OpenPoly ();
-
- start_H = screenBits.bounds.right / 2;
- start_V = screenBits.bounds.bottom;
-
- MoveTo (start_H, start_V); //• From here.
-
- //• To anywhere across screen width...
- LineTo (The_Ramdominator (0,screenBits.bounds.right),
- //• and anywhere above center.
- The_Ramdominator (0, screenBits.bounds.bottom / 2));
-
- //• To bottom center plus 50 and bottom only.
- LineTo (screenBits.bounds.right / 2 + 50, screenBits.bounds.bottom);
-
- //• And back home.
- LineTo (start_H, start_V);
-
- ClosePoly ();
-